home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Keyboard / Keyboard Protocols / Typing.h < prev    next >
Text File  |  1997-06-28  |  250b  |  20 lines

  1. // Typing.h
  2.  
  3. #ifndef Typing_h
  4. #define Typing_h
  5.  
  6. #ifndef ContextUser_h
  7. #include "ContextUser.h"
  8. #endif
  9. #ifndef ConstData_h
  10. #include "ConstData.h"
  11. #endif
  12.  
  13. class Typing: public ContextUser
  14.   {
  15.     public:
  16.         virtual void Type( ConstData ) = 0;
  17.   };
  18.  
  19. #endif
  20.